home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 1 / Cream of the Crop 1.iso / PROGRAM / DJEMU106.ARJ / E12.CC < prev    next >
C/C++ Source or Header  |  1991-04-28  |  357b  |  26 lines

  1. #include "emu.h"
  2. #include "rmov.h"
  3.  
  4. void fnop()
  5. {
  6. }
  7.  
  8. FUNC emu_12_table[] = {
  9.   fnop, emu_bad, emu_bad, emu_bad, emu_bad, emu_bad, emu_bad, emu_bad
  10. };
  11.  
  12. void emu_12()
  13. {
  14.   if (modrm > 0277)
  15.   {
  16.     (emu_12_table[modrm&7])();
  17.   }
  18.   else
  19.   {
  20.     // fst m32real
  21.     if (empty())
  22.       return;
  23.     r_mov(st(), (float *)get_modrm());
  24.   }
  25. }
  26.